home *** CD-ROM | disk | FTP | other *** search
/ Belgian Amiga Club - ADF Collection / BS1 part 05.zip / BS1 part 5 / SASC_6.0_Disk_4.adf / Compiler_Headers / Include / resources / battmembitsshared.h < prev    next >
C/C++ Source or Header  |  1992-07-30  |  1KB  |  63 lines

  1. #ifndef RESOURCES_BATTMEMBITSSHARED_H
  2. #define RESOURCES_BATTMEMBITSSHARED_H 1
  3. /*
  4. **    $Filename: resources/battmembitsshared.h $
  5. **    $Release: 2.04 Includes, V37.4 $
  6. **    $Revision: 1.1 $
  7. **    $Date: 90/05/25 $
  8. **
  9. **    BattMem shared specific bit definitions.
  10. **
  11. **    (C) Copyright 1989-1991 Commodore-Amiga Inc.
  12. **        All Rights Reserved
  13. */
  14.  
  15.  
  16. /*
  17.  * Shared bits in the battery-backedup ram.
  18.  *
  19.  *    Bits 64 and above
  20.  */
  21.  
  22. /*
  23.  * SHARED_AMNESIA
  24.  *
  25.  *        The battery-backedup memory has had a memory loss.
  26.  *        This bit is used as a flag that the user should be
  27.  *        notified that all battery-backed bit have been
  28.  *        reset and that some attention is required. Zero
  29.  *        indicates that a memory loss has occured.
  30.  */
  31.  
  32. #define BATTMEM_SHARED_AMNESIA_ADDR    64
  33. #define BATTMEM_SHARED_AMNESIA_LEN    1
  34.  
  35.  
  36. /*
  37.  * SCSI_HOST_ID
  38.  *
  39.  *        a 3 bit field (0-7) that is stored in complemented form
  40.  *        (this is so that default value of 0 really means 7)
  41.  *        It's used to set the A3000 controllers SCSI ID (on reset)
  42.  */
  43.  
  44. #define BATTMEM_SCSI_HOST_ID_ADDR    65
  45. #define BATTMEM_SCSI_HOST_ID_LEN    3
  46.  
  47.  
  48. /*
  49.  * SCSI_SYNC_XFER
  50.  *
  51.  *        determines if the driver should initiate synchronous
  52.  *        transfer requests or leave it to the drive to send the
  53.  *        first request.    This supports drives that crash or
  54.  *        otherwise get confused when presented with a sync xfer
  55.  *        message.  Default=0=sync xfer not initiated.
  56.  */
  57.  
  58. #define BATTMEM_SCSI_SYNC_XFER_ADDR    68
  59. #define BATTMEM_SCSI_SYNC_XFER_LEN    1
  60.  
  61.  
  62. #endif /* RESOURCES_BATTMEMBITSSHARED_H */
  63.